home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SuperHack
/
SuperHack CD.bin
/
CODING
/
DELPHI
/
SOCKV3.ZIP
/
CLTSVR.ZIP
/
CLTSVR.DPR
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-07-13
|
249 b
|
15 lines
program Cltsvr;
uses
Forms,
Clntserv in 'CLNTSERV.PAS' {Form1},
About in 'ABOUT.PAS' {AboutBox};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.